home *** CD-ROM | disk | FTP | other *** search
- // Copyright 1999 Macromedia, Inc. All rights reserved.
-
-
- //--------------- GLOBAL VARIABLES ---------------
-
- var helpDoc = MM.HELP_objLink;
-
- //--------------- API FUNCTIONS ---------------
-
- function objectTag(){
- var Attributes='';
- var Form=document.forms[0];
- var href=Form.href.value;
- var id=Form.id.value;
- var rel=Form.rel.value;
- var rev=Form.rev.value;
- var title=Form.title.value;
-
- if (href!='')
- Attributes+='href="' + href + '" ';
- if (id!='')
- Attributes+='id="' + id + '" ';
- if (rel!=''){
- Attributes+='rel="' + rel + '" ';
- if (rel.toLowerCase().indexOf("stylesheet")!=-1)
- Attributes+='type="text/css" ';
- }
- if (rev!='')
- Attributes+='rev="' + rev + '" ';
- if (title!='')
- Attributes+='title="' + title + '" ';
-
- if (Attributes.charAt(Attributes.length-1)==' ') { //if there is an extra space
- Attributes = Attributes.substring(0,Attributes.length-2) //kill it
- }
-
- return '<link ' + Attributes + '>';
- }
-
- //--------------- LOCAL FUNCTIONS ---------------
-
- function browseForFile(){
- var fileName=browseForFileURL();
- document.forms[0].href.value=fileName;
- }
-